home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / LGP250S1.ZIP / src / libgplus.5 / libgplus / gplus-in / assert.h next >
C/C++ Source or Header  |  1992-05-14  |  256b  |  15 lines

  1. #ifndef __libgxx_assert_h
  2.  
  3. extern "C" {
  4. #ifdef __assert_h_recursive
  5. #include_next <assert.h>
  6. #else
  7. /* assert.h on some systems needs stdio.h, in violation of ANSI. */
  8. #include <stdio.h>
  9. #include_next <assert.h>
  10.  
  11. #define __libgxx_assert_h 1
  12. #endif
  13. }
  14. #endif
  15.